You can calculate the value of the functions for Parametric and YFunction using the CalculateValue() method.
The following code demonstrates the CalculateValue() method:
C# |
Copy Code
|
class MySeries : FunctionSeries
{
void SomeMethod()
{
CalculateValue(...);
}
}
|
See Also